home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cvstrac_filediff.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  68 lines

  1. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  2. #  based on work from
  3. #  (C) Tenable Netwok Security
  4. #
  5. # Ref: Richard Ngo (August 2004)
  6. # This script is released under the GNU GPLv2
  7.  
  8.  
  9. if(description)
  10. {
  11. script_id(14220);
  12. script_bugtraq_id(10878);
  13.  
  14.  if ( defined_func("script_xref") ) 
  15.     script_xref(name:"OSVDB", value:"8373");
  16.  script_version ("$Revision: 1.9 $");
  17.  name["english"] = "CVSTrac filediff vulnerability";
  18.  
  19.  script_name(english:name["english"]);
  20.  
  21.  desc["english"] = "
  22. The remote host seems to be running cvstrac, 
  23. a web-based bug and patch-set tracking system for CVS.
  24.  
  25. This version of filediff has a flaw in the input sanitation
  26. which, when exploited, can lead to a remote attacker 
  27. executing arbitrary commands on the system.
  28.  
  29. ***** Nessus has determined the vulnerability exists on the target
  30. ***** simply by looking at the version number(s) of CVSTrac
  31. ***** installed there. 
  32.  
  33. Solution : Update to version 1.1.4 or disable this CGI suite
  34. Risk factor : High";
  35.  
  36.  
  37.  script_description(english:desc["english"]);
  38.  
  39.  summary["english"] = "Checks for CVSTrac version";
  40.  
  41.  script_summary(english:summary["english"]);
  42.  
  43.  script_category(ACT_ATTACK);
  44.  
  45.  
  46.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  47.  family["english"] = "CGI abuses";
  48.  family["fancais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("cvstrac_detect.nasl");
  51.  script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59. include("http_func.inc");
  60.  
  61. port = get_http_port(default:80);
  62. kb = get_kb_item("www/" + port + "/cvstrac" );
  63. if ( ! kb ) exit(0);
  64. stuff = eregmatch(pattern:"(.*) under (.*)", string:kb );
  65. version = stuff[1];
  66. if(ereg(pattern:"^(0\.|1\.(0|1\.[0-3]([^0-9]|$)))", string:version))
  67.          security_hole(port);
  68.